home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / gui / gtldv374.lha / GadUtil / Docs / AutoDocs / 44.GU_FindNode < prev    next >
Text File  |  1996-05-14  |  751b  |  31 lines

  1. gadutil.library/GU_FindNode                       gadutil.library/GU_FindNode
  2.  
  3.    NAME
  4.     GU_FindNode -- Find the node structure of a given node number
  5.  
  6.    SYNOPSIS
  7.     node = GU_FindNode(list, number)
  8.     D0,A0,SR(Z)        A0    D0
  9.  
  10.     struct Node *GU_FindNode(struct List *, WORD);
  11.  
  12.    FUNCTION
  13.     Finds a specified node in a list.
  14.  
  15.    INPUTS
  16.     list   - Struct List. The list in where to search.
  17.     number - Number of the node to find (counting from 0).
  18.  
  19.    RESULT
  20.     node  - Address to the node structure or NULL if the node wasn't
  21.             existing.
  22.  
  23.     SR(Z) - 0 for success, 1 for failure.
  24.  
  25.    BUGS
  26.     none known
  27.  
  28.    SEE ALSO
  29.     GU_AddTail(), GU_ClearList(), GU_DetachList(), GU_AttachList()
  30.     GU_NodeUp(), GU_NodeDown(), GU_CountNodes(), GU_NewList(), GU_SortList()
  31.